本篇紀錄如何使用物件動作
1.首先新增一筆物件動作,Type設定為"Item"意思為顯示的位置,放入Method,Target選擇"None"。
2.將建好的Action加入Itemtype。
3.設定好後上方就可以看到action的名稱。
4.執行程式
Innovator inn = this.getInnovator();
string seq=this.getProperty("test_seq");
Item source_item = inn.newItem("test_work","edit");
source_item .setAttribute("where","[test_work].test_seq='"+seq+"'");
Item add_item=source_item.createRelationship("test_norel","add");
add_item.setProperty("test_norelin","123");
source_item=source_item.apply();
return this;
5.執行完程式後,頁簽變多一筆資料。